home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 39 / Amiga Format CD39 (1999-04-13)(Future Publishing)(GB)[!][issue 1999-05].iso / -seriously_amiga- / graphics / ripley / source / config.h < prev    next >
C/C++ Source or Header  |  1999-03-02  |  2KB  |  50 lines

  1. #ifndef __MP_CONFIG_
  2. #define __MP_CONFIG_ 1
  3.  
  4. /* config.h, configuration defines                                          */
  5.  
  6. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  7.  
  8. /*
  9.  * Disclaimer of Warranty
  10.  *
  11.  * These software programs are available to the user without any license fee or
  12.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  13.  * any and all warranties, whether express, implied, or statuary, including any
  14.  * implied warranties or merchantability or of fitness for a particular
  15.  * purpose.  In no event shall the copyright-holder be liable for any
  16.  * incidental, punitive, or consequential damages of any kind whatsoever
  17.  * arising from the use of these programs.
  18.  *
  19.  * This disclaimer of warranty extends to the user of these programs and user's
  20.  * customers, employees, agents, transferees, successors, and assigns.
  21.  *
  22.  * The MPEG Software Simulation Group does not represent or warrant that the
  23.  * programs furnished hereunder are free of infringement of any third-party
  24.  * patents.
  25.  *
  26.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  27.  * are subject to royalty fees to patent holders.  Many of these patents are
  28.  * general enough such that they are unavoidable regardless of implementation
  29.  * design.
  30.  *
  31.  */
  32.  
  33. /* define NON_ANSI_COMPILER for compilers without function prototyping */
  34. /* #define NON_ANSI_COMPILER */
  35.  
  36. #ifdef NON_ANSI_COMPILER
  37. #define _ANSI_ARGS_(x) ()
  38. #else
  39. #define _ANSI_ARGS_(x) x
  40. #endif
  41.  
  42. #define RB "rb"
  43. #define WB "wb"
  44.  
  45. #ifndef O_BINARY
  46. #define O_BINARY 0
  47. #endif
  48.  
  49. #endif
  50.